wAn
array is a collection of variables of the same type. Individual array elements
are identified by an integer index. In C the index begins at zero and is always written
inside square brackets.
w
w int results[20];
w int results_2d[20][5];
w int results_3d[20][5][3];